home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / translate_f.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  64 lines

  1. #
  2. # This script was written by Alexander Strouk
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. if(description)
  8. {
  9.  script_id(10491); 
  10.  script_bugtraq_id(1578);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CVE-2000-0778");
  13.  name["english"] = "ASP/ASA source using Microsoft Translate f: bug";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. There is a serious vulnerability in Windows 2000 (unpatched by SP1) that 
  18. allows an attacker to view ASP/ASA source code instead of a processed file.
  19.  
  20. ASP source code can contain sensitive information such as username's and 
  21. passwords for ODBC connections.
  22.  
  23. Solution : install all the latest Microsoft Security Patches (Note: This 
  24. vulnerability is eliminated by installing Windows 2000 Service Pack 1)
  25.  
  26.  Risk factor : High";
  27.  
  28.  script_description(english:desc["english"]);
  29.  summary["english"] = "downloads the source of IIS scripts such as ASA,ASP";
  30.  script_summary(english:summary["english"]);
  31.  script_category(ACT_GATHER_INFO);
  32.  copyright="This script is Copyright (C) 2000 Alexander Strouk";
  33.  script_copyright(english:copyright);
  34.  script_family(english:"CGI abuses");
  35.  script_dependencie("find_service.nes", "no404.nasl", "http_version.nasl", "www_fingerprinting_hmap.nasl");
  36.  script_require_ports("Services/www", 80);
  37.  exit(0);
  38. }
  39.  
  40. #
  41. # The script code starts here
  42. #
  43.  
  44. include("http_func.inc");
  45.  
  46. port = get_http_port(default:80);
  47.  
  48. sig = get_kb_item("www/hmap/" + port + "/description");
  49. if ( sig && "IIS" >!< sig ) exit(0);
  50. if(get_port_state(port))
  51. {
  52.  soc = open_sock_tcp(port);
  53.  if(soc)
  54.  {
  55.   req = string("GET /global.asa\\ HTTP/1.0\nTranslate: f\r\n\r\n");
  56.   send(socket:soc, data:req);
  57.   r = http_recv_headers(soc);
  58.   if( r == NULL ) exit(0);
  59.   if("Content-Type: application/octet-stream" >< r)security_hole(port);
  60.   close(soc);
  61.  }
  62. }
  63.  
  64.